@postnord/pn-marketweb-components 2.0.142 → 2.0.144

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 (37) hide show
  1. package/cjs/loader.cjs.js +1 -1
  2. package/cjs/pn-chart.cjs.entry.js +15 -5
  3. package/cjs/pn-market-web-components.cjs.js +1 -1
  4. package/cjs/pn-stats-info-data.cjs.entry.js +1 -1
  5. package/cjs/pn-stats-info.cjs.entry.js +3 -3
  6. package/collection/components/charts/pn-chart/pn-chart.js +21 -8
  7. package/collection/components/data-visualization/pn-stats-info/pn-stats-info-data/pn-stats-info-data.css +0 -3
  8. package/collection/components/data-visualization/pn-stats-info/pn-stats-info.css +313 -14
  9. package/collection/components/data-visualization/pn-stats-info/pn-stats-info.js +3 -3
  10. package/collection/components/data-visualization/pn-stats-info/pn-stats-info.stories.js +93 -7
  11. package/custom-elements/index.js +21 -11
  12. package/esm/loader.js +1 -1
  13. package/esm/pn-chart.entry.js +15 -5
  14. package/esm/pn-market-web-components.js +1 -1
  15. package/esm/pn-stats-info-data.entry.js +1 -1
  16. package/esm/pn-stats-info.entry.js +3 -3
  17. package/esm-es5/loader.js +1 -1
  18. package/esm-es5/pn-chart.entry.js +1 -1
  19. package/esm-es5/pn-market-web-components.js +1 -1
  20. package/esm-es5/pn-stats-info-data.entry.js +1 -1
  21. package/esm-es5/pn-stats-info.entry.js +1 -1
  22. package/package.json +1 -1
  23. package/pn-market-web-components/p-00165a55.system.entry.js +1 -0
  24. package/pn-market-web-components/{p-fdec849a.system.entry.js → p-05f6c442.system.entry.js} +1 -1
  25. package/pn-market-web-components/p-0fbcc2b8.entry.js +1 -0
  26. package/pn-market-web-components/{p-ccf891fc.entry.js → p-4d29f6a6.entry.js} +3 -3
  27. package/pn-market-web-components/p-80e58bf9.entry.js +1 -0
  28. package/pn-market-web-components/p-d295ef71.system.js +1 -1
  29. package/pn-market-web-components/p-fd040ac6.system.entry.js +1 -0
  30. package/pn-market-web-components/pn-market-web-components.esm.js +1 -1
  31. package/types/components/charts/pn-chart/pn-chart.d.ts +4 -4
  32. package/umd/pn-marketweb-init.js +1 -1
  33. package/umd/pn-marketweb-salesforce.js +2 -2
  34. package/pn-market-web-components/p-0ffa3353.entry.js +0 -1
  35. package/pn-market-web-components/p-19b622e7.entry.js +0 -1
  36. package/pn-market-web-components/p-488a5506.system.entry.js +0 -1
  37. package/pn-market-web-components/p-8879ac54.system.entry.js +0 -1
@@ -1,3 +1,230 @@
1
+ pn-stats-info .pn-stats-info__container {
2
+ display: flex;
3
+ flex-direction: row;
4
+ justify-content: center;
5
+ }
6
+ pn-stats-info .pn-stats-info__container__map {
7
+ display: none;
8
+ }
9
+ pn-stats-info .pn-stats-info-image-container {
10
+ display: none;
11
+ }
12
+ pn-stats-info .pn-stats-info__container__content {
13
+ display: flex;
14
+ flex-direction: column;
15
+ align-items: center;
16
+ padding: 2rem;
17
+ width: 100%;
18
+ background-color: #0D234B;
19
+ border-radius: 24px;
20
+ }
21
+ pn-stats-info .pn-stats-info__container__content__heading {
22
+ color: #F06365;
23
+ margin-bottom: 2.4rem;
24
+ align-self: center;
25
+ text-align: center;
26
+ font-size: 3rem;
27
+ line-height: 110%;
28
+ }
29
+ @media screen and (min-width: 1200px) {
30
+ pn-stats-info .pn-stats-info__container__content__heading {
31
+ font-weight: 700;
32
+ font-size: 4.8rem;
33
+ }
34
+ }
35
+ pn-stats-info .pn-stats-info__container__content__data {
36
+ height: 100%;
37
+ display: flex;
38
+ flex-direction: row;
39
+ justify-content: center;
40
+ flex-wrap: wrap;
41
+ min-height: 20rem;
42
+ width: 100%;
43
+ }
44
+ @media screen and (min-width: 1640px) {
45
+ pn-stats-info .pn-stats-info__container__content__data {
46
+ width: 65rem;
47
+ }
48
+ }
49
+ pn-stats-info .pn-stats-info__container__content__data pn-stats-info-data:first-child:nth-last-child(1) {
50
+ width: 100%;
51
+ }
52
+ pn-stats-info .pn-stats-info__container__content__data pn-stats-info-data:first-child:nth-last-child(2),
53
+ pn-stats-info .pn-stats-info__container__content__data pn-stats-info-data:first-child:nth-last-child(2) ~ pn-stats-info-data {
54
+ width: 50%;
55
+ }
56
+ pn-stats-info .pn-stats-info__container__content__data pn-stats-info-data:first-child:nth-last-child(3n),
57
+ pn-stats-info .pn-stats-info__container__content__data pn-stats-info-data:first-child:nth-last-child(3n) ~ pn-stats-info-data {
58
+ width: 33%;
59
+ }
60
+ pn-stats-info .pn-stats-info__container__content__data pn-stats-info-data:first-child:nth-last-child(8),
61
+ pn-stats-info .pn-stats-info__container__content__data pn-stats-info-data:first-child:nth-last-child(8) ~ pn-stats-info-data {
62
+ width: 25%;
63
+ }
64
+
65
+ pn-stats-info[data-stats-image=background] .pn-stats-info__container__map {
66
+ display: none;
67
+ border-top-left-radius: 24px;
68
+ border-bottom-left-radius: 24px;
69
+ }
70
+ @media screen and (min-width: 768px) {
71
+ pn-stats-info[data-stats-image=background] .pn-stats-info__container__map {
72
+ display: block;
73
+ max-width: 46rem;
74
+ width: 100%;
75
+ background-color: #0D234B;
76
+ background-repeat: no-repeat;
77
+ background-position: bottom center;
78
+ background-size: 55%;
79
+ }
80
+ }
81
+ @media screen and (min-width: 1200px) {
82
+ pn-stats-info[data-stats-image=background] .pn-stats-info__container__map {
83
+ background-size: contain;
84
+ }
85
+ }
86
+ pn-stats-info[data-stats-image=background] .pn-stats-info-image-container {
87
+ display: none;
88
+ }
89
+ pn-stats-info[data-stats-image=background] .pn-stats-info__container__content {
90
+ display: flex;
91
+ flex-direction: column;
92
+ align-items: center;
93
+ padding: 2rem;
94
+ width: 100%;
95
+ background-color: #0D234B;
96
+ background-repeat: no-repeat;
97
+ background-position: bottom left;
98
+ background-size: 50%;
99
+ background-blend-mode: overlay;
100
+ padding-bottom: 2rem;
101
+ border-radius: 24px;
102
+ }
103
+ @media screen and (min-width: 768px) {
104
+ pn-stats-info[data-stats-image=background] .pn-stats-info__container__content {
105
+ border-top-left-radius: 0px;
106
+ border-bottom-left-radius: 0px;
107
+ max-width: 540px;
108
+ background-position: -999px -999px;
109
+ background-size: 0;
110
+ padding-bottom: 4rem;
111
+ padding-right: 4rem;
112
+ }
113
+ }
114
+ @media screen and (min-width: 1200px) {
115
+ pn-stats-info[data-stats-image=background] .pn-stats-info__container__content {
116
+ max-width: 100%;
117
+ padding-bottom: 6rem;
118
+ padding-right: 6rem;
119
+ }
120
+ }
121
+ pn-stats-info[data-stats-image=background] .pn-stats-info__container__content__data {
122
+ min-height: 0;
123
+ }
124
+ pn-stats-info[data-stats-image=background] .pn-stats-info__container__content__data .pn-stats-info-data__container {
125
+ justify-content: flex-start;
126
+ }
127
+
128
+ pn-stats-info[data-stats-image=image] .pn-stats-info__container {
129
+ flex-direction: column;
130
+ padding-top: 0;
131
+ }
132
+ @media screen and (min-width: 992px) {
133
+ pn-stats-info[data-stats-image=image] .pn-stats-info__container {
134
+ flex-direction: row;
135
+ }
136
+ }
137
+ pn-stats-info[data-stats-image=image] .pn-stats-info__container__map {
138
+ display: none;
139
+ }
140
+ pn-stats-info[data-stats-image=image] .pn-stats-info-image-container {
141
+ display: block;
142
+ position: relative;
143
+ }
144
+ pn-stats-info[data-stats-image=image] .pn-stats-info-image-container [slot=illustration] {
145
+ border-top-left-radius: 24px;
146
+ border-top-right-radius: 24px;
147
+ }
148
+ pn-stats-info[data-stats-image=image] .pn-stats-info-image-container [slot=illustration] > picture > img {
149
+ width: 100%;
150
+ height: auto;
151
+ border-top-left-radius: 24px;
152
+ border-top-right-radius: 24px;
153
+ }
154
+ @media screen and (min-width: 992px) {
155
+ pn-stats-info[data-stats-image=image] .pn-stats-info-image-container {
156
+ display: flex;
157
+ align-items: center;
158
+ background-color: #0D234B;
159
+ padding-left: 40px;
160
+ border-top-left-radius: 24px;
161
+ border-bottom-left-radius: 24px;
162
+ }
163
+ pn-stats-info[data-stats-image=image] .pn-stats-info-image-container [slot=illustration] img {
164
+ clip-path: circle(50%);
165
+ object-fit: cover;
166
+ object-position: center;
167
+ aspect-ratio: 1;
168
+ max-width: 450px;
169
+ }
170
+ }
171
+ pn-stats-info[data-stats-image=image] .pn-stats-info__container__content {
172
+ width: 100%;
173
+ max-width: 100%;
174
+ border-bottom-right-radius: 24px;
175
+ border-bottom-left-radius: 24px;
176
+ border-top-right-radius: 0;
177
+ border-top-left-radius: 0;
178
+ }
179
+ @media screen and (min-width: 768px) {
180
+ pn-stats-info[data-stats-image=image] .pn-stats-info__container__content {
181
+ justify-content: center;
182
+ }
183
+ }
184
+ @media screen and (min-width: 992px) {
185
+ pn-stats-info[data-stats-image=image] .pn-stats-info__container__content {
186
+ border-top-right-radius: 24px;
187
+ border-bottom-right-radius: 24px;
188
+ border-bottom-left-radius: 0;
189
+ padding: 50px 25px;
190
+ max-width: 100%;
191
+ }
192
+ }
193
+ @media screen and (min-width: 992px) {
194
+ pn-stats-info[data-stats-image=image] .pn-stats-info__container__content__heading {
195
+ font-size: 4.8rem;
196
+ }
197
+ }
198
+ pn-stats-info[data-stats-image=image] .pn-stats-info__container__content__data {
199
+ width: 100%;
200
+ height: auto;
201
+ min-height: 0;
202
+ }
203
+ pn-stats-info[data-stats-image=image] .pn-stats-info__container__content__data .pn-stats-info-data__container {
204
+ justify-content: flex-start;
205
+ min-height: 56px;
206
+ }
207
+ @media screen and (min-width: 768px) {
208
+ pn-stats-info[data-stats-image=image] .pn-stats-info__container__content__data .pn-stats-info-data__container {
209
+ min-height: 56px;
210
+ padding: 2.4rem;
211
+ }
212
+ }
213
+ @media screen and (min-width: 1200px) {
214
+ pn-stats-info[data-stats-image=image] .pn-stats-info__container__content__data .pn-stats-info-data__container {
215
+ min-height: 50px;
216
+ }
217
+ }
218
+ @media screen and (min-width: 992px) {
219
+ pn-stats-info[data-stats-image=image] .pn-stats-info__container__content__data .pn-stats-info-data__container__content__data {
220
+ font-size: 5.6rem;
221
+ }
222
+ }
223
+ @media screen and (min-width: 992px) {
224
+ pn-stats-info[data-stats-image=image] .pn-stats-info__container__content__data .pn-stats-info-data__container__content__unit {
225
+ font-size: 5.6rem;
226
+ }
227
+ }
1
228
  .bleed-container:has(pn-stats-info) {
2
229
  padding: 0;
3
230
  margin-bottom: 3rem;
@@ -10,30 +237,30 @@
10
237
  margin-bottom: 0 !important;
11
238
  }
12
239
 
13
- pn-stats-info {
240
+ .comboquotestatsblock pn-stats-info {
14
241
  width: 100%;
15
242
  }
16
- pn-stats-info .pn-stats-info__container {
243
+ .comboquotestatsblock pn-stats-info .pn-stats-info__container {
17
244
  display: flex;
18
245
  flex-direction: row;
19
246
  justify-content: center;
20
247
  padding-top: 2rem;
21
248
  }
22
249
  @media screen and (min-width: 768px) {
23
- pn-stats-info .pn-stats-info__container {
250
+ .comboquotestatsblock pn-stats-info .pn-stats-info__container {
24
251
  padding-top: 6rem;
25
252
  }
26
253
  }
27
254
  @media screen and (min-width: 1200px) {
28
- pn-stats-info .pn-stats-info__container {
255
+ .comboquotestatsblock pn-stats-info .pn-stats-info__container {
29
256
  padding-top: 8rem;
30
257
  }
31
258
  }
32
- pn-stats-info .pn-stats-info__container__map {
259
+ .comboquotestatsblock pn-stats-info .pn-stats-info__container__map {
33
260
  display: none;
34
261
  }
35
262
  @media screen and (min-width: 768px) {
36
- pn-stats-info .pn-stats-info__container__map {
263
+ .comboquotestatsblock pn-stats-info .pn-stats-info__container__map {
37
264
  display: block;
38
265
  max-width: 46rem;
39
266
  width: 100%;
@@ -44,11 +271,14 @@ pn-stats-info .pn-stats-info__container__map {
44
271
  }
45
272
  }
46
273
  @media screen and (min-width: 1200px) {
47
- pn-stats-info .pn-stats-info__container__map {
274
+ .comboquotestatsblock pn-stats-info .pn-stats-info__container__map {
48
275
  background-size: contain;
49
276
  }
50
277
  }
51
- pn-stats-info .pn-stats-info__container__content {
278
+ .comboquotestatsblock pn-stats-info .pn-stats-info-image-container {
279
+ display: none;
280
+ }
281
+ .comboquotestatsblock pn-stats-info .pn-stats-info__container__content {
52
282
  display: flex;
53
283
  flex-direction: column;
54
284
  align-items: center;
@@ -62,7 +292,7 @@ pn-stats-info .pn-stats-info__container__content {
62
292
  padding-bottom: 2rem;
63
293
  }
64
294
  @media screen and (min-width: 768px) {
65
- pn-stats-info .pn-stats-info__container__content {
295
+ .comboquotestatsblock pn-stats-info .pn-stats-info__container__content {
66
296
  max-width: 540px;
67
297
  background-position: -999px -999px;
68
298
  background-size: 0;
@@ -71,13 +301,13 @@ pn-stats-info .pn-stats-info__container__content {
71
301
  }
72
302
  }
73
303
  @media screen and (min-width: 1200px) {
74
- pn-stats-info .pn-stats-info__container__content {
304
+ .comboquotestatsblock pn-stats-info .pn-stats-info__container__content {
75
305
  max-width: 100%;
76
306
  padding-bottom: 6rem;
77
307
  padding-right: 6rem;
78
308
  }
79
309
  }
80
- pn-stats-info .pn-stats-info__container__content__heading {
310
+ .comboquotestatsblock pn-stats-info .pn-stats-info__container__content__heading {
81
311
  color: #F06365;
82
312
  margin-bottom: 2.4rem;
83
313
  align-self: center;
@@ -86,12 +316,12 @@ pn-stats-info .pn-stats-info__container__content__heading {
86
316
  line-height: 110%;
87
317
  }
88
318
  @media screen and (min-width: 1200px) {
89
- pn-stats-info .pn-stats-info__container__content__heading {
319
+ .comboquotestatsblock pn-stats-info .pn-stats-info__container__content__heading {
90
320
  font-weight: 700;
91
321
  font-size: 4.8rem;
92
322
  }
93
323
  }
94
- pn-stats-info .pn-stats-info__container__content__data {
324
+ .comboquotestatsblock pn-stats-info .pn-stats-info__container__content__data {
95
325
  height: 100%;
96
326
  display: flex;
97
327
  flex-direction: row;
@@ -99,7 +329,76 @@ pn-stats-info .pn-stats-info__container__content__data {
99
329
  min-height: 20rem;
100
330
  }
101
331
  @media screen and (min-width: 1640px) {
102
- pn-stats-info .pn-stats-info__container__content__data {
332
+ .comboquotestatsblock pn-stats-info .pn-stats-info__container__content__data {
103
333
  width: 65rem;
104
334
  }
335
+ }
336
+
337
+ pn-stats-info[data-stats-background-color=bluedarkest] .pn-stats-info__container__content,
338
+ pn-stats-info[data-stats-background-color=bluedarkest] .pn-stats-info__container__map {
339
+ background-color: #0D234B;
340
+ }
341
+ pn-stats-info[data-stats-background-color=bluedarkest] .pn-stats-info-image-container {
342
+ background-color: transparent;
343
+ }
344
+ pn-stats-info[data-stats-background-color=bluedarkest] .pn-stats-info-image-container [slot=illustration] {
345
+ background-color: #0D234B;
346
+ }
347
+ @media screen and (min-width: 992px) {
348
+ pn-stats-info[data-stats-background-color=bluedarkest] .pn-stats-info-image-container {
349
+ background-color: #0D234B;
350
+ }
351
+ }
352
+ pn-stats-info[data-stats-background-color=bluedarkest] .pn-stats-info__container__content__heading,
353
+ pn-stats-info[data-stats-background-color=bluedarkest] .pn-stats-info-data__container__content {
354
+ color: #F06365;
355
+ }
356
+ pn-stats-info[data-stats-background-color=bluedarkest] .pn-stats-info-data__container__content__preamble {
357
+ color: #FFFFFF;
358
+ }
359
+
360
+ pn-stats-info[data-stats-background-color=greendarkest] .pn-stats-info__container__content,
361
+ pn-stats-info[data-stats-background-color=greendarkest] .pn-stats-info__container__map {
362
+ background-color: #005E41;
363
+ }
364
+ pn-stats-info[data-stats-background-color=greendarkest] .pn-stats-info-image-container {
365
+ background-color: transparent;
366
+ }
367
+ pn-stats-info[data-stats-background-color=greendarkest] .pn-stats-info-image-container [slot=illustration] {
368
+ background-color: #005E41;
369
+ }
370
+ @media screen and (min-width: 992px) {
371
+ pn-stats-info[data-stats-background-color=greendarkest] .pn-stats-info-image-container {
372
+ background-color: #005E41;
373
+ }
374
+ }
375
+ pn-stats-info[data-stats-background-color=greendarkest] .pn-stats-info__container__content__heading,
376
+ pn-stats-info[data-stats-background-color=greendarkest] .pn-stats-info-data__container__content {
377
+ color: #FFFFFF;
378
+ }
379
+ pn-stats-info[data-stats-background-color=greendarkest] .pn-stats-info-data__container__content__preamble {
380
+ color: #FFFFFF;
381
+ }
382
+
383
+ pn-stats-info[data-stats-background-color=greenlightest] .pn-stats-info__container__content,
384
+ pn-stats-info[data-stats-background-color=greenlightest] .pn-stats-info__container__map {
385
+ background-color: #EDFBF3;
386
+ }
387
+ pn-stats-info[data-stats-background-color=greenlightest] .pn-stats-info-image-container {
388
+ background-color: transparent;
389
+ }
390
+ pn-stats-info[data-stats-background-color=greenlightest] .pn-stats-info-image-container [slot=illustration] {
391
+ background-color: #EDFBF3;
392
+ }
393
+ @media screen and (min-width: 992px) {
394
+ pn-stats-info[data-stats-background-color=greenlightest] .pn-stats-info-image-container {
395
+ background-color: #EDFBF3;
396
+ }
397
+ }
398
+ pn-stats-info[data-stats-background-color=greenlightest] .pn-stats-info__container__content__heading,
399
+ pn-stats-info[data-stats-background-color=greenlightest] .pn-stats-info-data__container__content {
400
+ color: #005D92;
401
+ }
402
+ pn-stats-info[data-stats-background-color=greenlightest] .pn-stats-info-data__container__content__preamble {
403
+ color: #0D234B;
105
404
  }
@@ -1,5 +1,5 @@
1
- import { h, Host, } from '@stencil/core';
2
- const mockStringArray = '[{ "preamble": "Million parcels", "data": 226, "unit": null, "duration": 1000 }, { "preamble": "weighted parcel delivery quality", "data": 94.5, "unit": "%", "duration": 2500 },{ "preamble": "billion letters and other mail items", "data": 1.5, "unit": "", "duration": 3000 },{ "preamble": "carbon dioxide emissions since 2009", "data": -44, "unit": "%", "duration": 2000 }]';
1
+ import { h, Host } from '@stencil/core';
2
+ const mockStringArray = '[ { "preamble": "Million parcels", "data": 226, "unit": null, "duration": 1000 }, { "preamble": "Million parcels", "data": 226, "unit": null, "duration": 1000 },{"preamble": "carbon dioxide emissions since 2009", "data": -44, "unit": "%", "duration": 2000 }, { "preamble": "Million parcels", "data": 226, "unit": null, "duration": 1000 }]';
3
3
  export class PnStatsInfo {
4
4
  constructor() {
5
5
  this.heading = 'Heading';
@@ -15,7 +15,7 @@ export class PnStatsInfo {
15
15
  return Date.now();
16
16
  }
17
17
  render() {
18
- return (h(Host, null, h("div", { class: "pn-stats-info__container" }, h("div", { class: "pn-stats-info__container__map", style: { backgroundImage: `url(${this.backgroundUrl})` } }), h("div", { class: "pn-stats-info__container__content", style: { backgroundImage: `url(${this.backgroundUrl})` } }, h("h3", { class: "pn-stats-info__container__content__heading" }, this.heading), h("div", { class: "pn-stats-info__container__content__data" }, this.myParsedArray &&
18
+ return (h(Host, null, h("div", { class: "pn-stats-info__container" }, h("div", { class: "pn-stats-info__container__map", style: { backgroundImage: `url(${this.backgroundUrl})` } }), h("div", { class: "pn-stats-info-image-container" }, h("slot", { name: "illustration" })), h("div", { class: "pn-stats-info__container__content", style: { backgroundImage: `url(${this.backgroundUrl})` } }, h("h3", { class: "pn-stats-info__container__content__heading" }, this.heading), h("div", { class: "pn-stats-info__container__content__data" }, this.myParsedArray &&
19
19
  this.myParsedArray.map((stats, index) => {
20
20
  return (h("pn-stats-info-data", { "comp-id": `${this.generateUniqueID()}-${index}`, data: stats.data, unit: stats.unit, preamble: stats.preamble, duration: stats.duration }));
21
21
  }))))));
@@ -8,30 +8,116 @@ export default {
8
8
  },
9
9
  };
10
10
 
11
- const PrimaryTemplate = ({ ...args }) => {
11
+ const ForComboBlockTemplate = ({ ...args }) => {
12
12
  return `
13
- <div style="height:1200px">
13
+ <div style="height:1200px" class="comboquotestatsblock">
14
14
  <h1 style="text-align:center;">Scroll Down...</h1>
15
15
  </div>
16
16
  <div style="background-color:#0D234B;">
17
17
  <div style="width:100%; max-width:1140px; margin:0 auto">
18
- <pn-stats-info heading="${args.heading}" background-url="${args.backgroundUrl}">
18
+ <pn-stats-info heading="${args.heading}" data-stats-image="background" background-url="${args.backgroundUrl}">
19
19
  </pn-stats-info>
20
20
  </div>
21
- </div>
21
+ </div>
22
22
  <br/>
23
23
 
24
24
  <div style="background-color:#0D234B;">
25
25
  <div style="width:100%; max-width:1140px; margin:0 auto">
26
- <pn-stats-info heading="${args.heading}" background-url="${args.backgroundUrl}">
26
+ <pn-stats-info heading="${args.heading}" data-stats-image="background" background-url="${args.backgroundUrl}" >
27
27
  </pn-stats-info>
28
28
  </div>
29
+ </div>
30
+ `;
31
+ };
32
+
33
+ const StandaloneTemplateNoImage = ({ ...args }) => {
34
+ return `
35
+ <pn-breakpoints></pn-breakpoints>
36
+
37
+ <div class="fullwidth statsblock" style="width:100%; max-width:1140px; margin:0 auto">
38
+ <pn-stats-info heading="${args.heading}" background-url="" data-stats-image="none" data-stats-background-color="greenlightest">
39
+ </pn-stats-info>
40
+ </div>
41
+ <br/>
42
+ <div class="fullwidth statsblock" style="width:100%; max-width:1140px; margin:0 auto">
43
+ <pn-stats-info heading="${args.heading}" background-url="" data-stats-image="none" data-stats-background-color="greendarkest">
44
+ </pn-stats-info>
45
+ </div>
46
+ <br/>
47
+ <div class="fullwidth statsblock" style="width:100%; max-width:1140px; margin:0 auto">
48
+ <pn-stats-info heading="${args.heading}" background-url="" data-stats-image="none" data-stats-background-color="bluedarkest">
49
+ </pn-stats-info>
50
+ </div>
51
+ `;
52
+ };
53
+
54
+ const StandAloneCenterImageTemplate = ({ ...args }) => {
55
+ return `
56
+ <pn-breakpoints></pn-breakpoints>
57
+
58
+ <div class="fullwidth statsblock" style="width:100%; max-width:1140px; margin:0 auto">
59
+ <pn-stats-info heading="${args.heading}" background-url="" data-stats-image="image" data-stats-background-color="bluedarkest">
60
+ <div slot="illustration">
61
+ <picture>
62
+ <img src="https://com-integration.postnord.com/contentassets/8008a14914564b5c999d2cea4e151bdd/man-driving.jpg?width=690&height=388&mode=crop&quality=80&anchor=topcenter" />
63
+ </picture>
64
+ </div>
65
+ </pn-stats-info>
66
+ </div>
67
+
68
+ <br/>
69
+
70
+ <div class="fullwidth statsblock" style="width:100%; max-width:1140px; margin:0 auto">
71
+ <pn-stats-info heading="${args.heading}" background-url="" data-stats-image="image" data-stats-background-color="greendarkest">
72
+ <div slot="illustration">
73
+ <picture>
74
+ <img src="https://com-integration.postnord.com/contentassets/f302a64bf3b5496aaf6f49d8d47e834e/bcdda39b3033ad8b_org.jpg?width=540&height=304&mode=crop&quality=80&anchor=topcenter" />
75
+ </picture>
76
+ </div>
77
+ </pn-stats-info>
29
78
  </div>
30
79
  `;
31
80
  };
32
81
 
33
- export const Primary = PrimaryTemplate.bind({});
34
- Primary.args = {
82
+ const StandAloneBackgroundImageTemplate = ({ ...args }) => {
83
+ return `
84
+ <pn-breakpoints></pn-breakpoints>
85
+ <div class="fullwidth statsblock" style="width:100%; max-width:1140px; margin:0 auto">
86
+ <pn-stats-info heading="${args.heading}" data-stats-image="background" background-url="${args.backgroundUrl}">
87
+ </pn-stats-info>
88
+ </div>
89
+ <br/>
90
+
91
+ <div class="fullwidth statsblock" style="width:100%; max-width:1140px; margin:0 auto">
92
+ <pn-stats-info heading="${args.heading}" data-stats-image="background" background-url="https://com-integration.postnord.com/globalassets/illustrations/product-hero-illustrations--transparent-background/illu-computer-option.svg" data-stats-background-color="greenlightest">
93
+ </pn-stats-info>
94
+ </div>
95
+ <br/>
96
+ <div class="fullwidth statsblock" style="width:100%; max-width:1140px; margin:0 auto">
97
+ <pn-stats-info heading="${args.heading}" data-stats-image="background" background-url="https://com-integration.postnord.com/contentassets/87e64ce0b9ce4acfafa0c26a1b11bd85/9b5aa1ae4698932c_org.png" data-stats-background-color="greendarkest">
98
+ </pn-stats-info>
99
+ </div>
100
+ `;
101
+ };
102
+
103
+ export const Combo = ForComboBlockTemplate.bind({});
104
+ Combo.args = {
35
105
  heading: 'Postnord in figures 2022',
36
106
  backgroundUrl: 'https://com-integration.postnord.com/siteassets/map.png?width=1410&height=793&mode=crop&quality=80',
37
107
  };
108
+
109
+ export const StandaloneNoImage = StandaloneTemplateNoImage.bind({});
110
+ StandaloneNoImage.args = {
111
+ heading: 'Standalone Postnord in figures 2022',
112
+ };
113
+
114
+ export const StandAloneCenterImage = StandAloneCenterImageTemplate.bind({});
115
+ StandAloneCenterImage.args = {
116
+ heading: 'Standalone Center Image',
117
+ };
118
+
119
+ export const StandAloneBackGroundImage = StandAloneBackgroundImageTemplate.bind({});
120
+ StandAloneBackGroundImage.args = {
121
+ heading: 'Standalone BG Image 2023',
122
+ backgroundUrl: 'https://com-integration.postnord.com/siteassets/map.png?width=1410&height=793&mode=crop&quality=80',
123
+ };