@postnord/pn-marketweb-components 2.0.109 → 2.0.111
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/cjs/loader.cjs.js +1 -1
- package/cjs/pn-line-shape.cjs.entry.js +21 -0
- package/cjs/pn-market-web-components.cjs.js +1 -1
- package/cjs/pn-quote-card.cjs.entry.js +24 -0
- package/cjs/pn-stats-info-data.cjs.entry.js +1 -1
- package/cjs/pn-stats-info.cjs.entry.js +4 -1
- package/collection/collection-manifest.json +2 -0
- package/collection/components/cards/pn-quote-card/pn-line-shape/pn-line-shape.css +39 -0
- package/collection/components/cards/pn-quote-card/pn-line-shape/pn-line-shape.js +18 -0
- package/collection/components/cards/pn-quote-card/pn-quote-card.css +295 -0
- package/collection/components/cards/pn-quote-card/pn-quote-card.js +92 -0
- package/collection/components/cards/pn-quote-card/pn-quote-card.stories.js +83 -0
- package/collection/components/data-visualization/pn-stats-info/pn-stats-info-data/animationHelper.js +1 -1
- package/collection/components/data-visualization/pn-stats-info/pn-stats-info-data/pn-stats-info-data.js +3 -3
- package/collection/components/data-visualization/pn-stats-info/pn-stats-info.js +4 -1
- package/collection/components/data-visualization/pn-stats-info/pn-stats-info.stories.js +8 -0
- package/custom-elements/index.d.ts +12 -0
- package/custom-elements/index.js +44 -4
- package/esm/loader.js +1 -1
- package/esm/pn-line-shape.entry.js +17 -0
- package/esm/pn-market-web-components.js +1 -1
- package/esm/pn-quote-card.entry.js +20 -0
- package/esm/pn-stats-info-data.entry.js +1 -1
- package/esm/pn-stats-info.entry.js +4 -1
- package/esm-es5/loader.js +1 -1
- package/esm-es5/pn-line-shape.entry.js +1 -0
- package/esm-es5/pn-market-web-components.js +1 -1
- package/esm-es5/pn-quote-card.entry.js +1 -0
- package/esm-es5/pn-stats-info-data.entry.js +1 -1
- package/esm-es5/pn-stats-info.entry.js +1 -1
- package/package.json +1 -1
- package/pn-market-web-components/p-15ae4d8a.system.entry.js +1 -0
- package/pn-market-web-components/p-1610d018.system.entry.js +1 -0
- package/pn-market-web-components/{p-08ea20b0.system.entry.js → p-18380cb2.system.entry.js} +1 -1
- package/pn-market-web-components/p-4e0757d5.entry.js +1 -0
- package/pn-market-web-components/p-5117ac1f.entry.js +1 -0
- package/pn-market-web-components/p-67887512.system.js +1 -1
- package/pn-market-web-components/p-93352282.entry.js +1 -0
- package/pn-market-web-components/p-cd12c6b1.system.entry.js +1 -0
- package/pn-market-web-components/p-fd4bb638.entry.js +1 -0
- package/pn-market-web-components/pn-market-web-components.esm.js +1 -1
- package/types/components/cards/pn-quote-card/pn-line-shape/pn-line-shape.d.ts +4 -0
- package/types/components/cards/pn-quote-card/pn-quote-card.d.ts +7 -0
- package/types/components/data-visualization/pn-stats-info/pn-stats-info-data/pn-stats-info-data.d.ts +1 -1
- package/types/components/data-visualization/pn-stats-info/pn-stats-info.d.ts +1 -0
- package/types/components.d.ts +34 -2
- package/umd/pn-marketweb-init.js +1 -1
- package/umd/pn-marketweb-salesforce.js +2 -2
- package/pn-market-web-components/p-1ef2ef71.system.entry.js +0 -1
- package/pn-market-web-components/p-20281c39.entry.js +0 -1
- package/pn-market-web-components/p-910eb3c2.entry.js +0 -1
package/types/components.d.ts
CHANGED
|
@@ -113,6 +113,8 @@ export namespace Components {
|
|
|
113
113
|
"selected": boolean;
|
|
114
114
|
"url": string;
|
|
115
115
|
}
|
|
116
|
+
interface PnLineShape {
|
|
117
|
+
}
|
|
116
118
|
interface PnMainnav {
|
|
117
119
|
/**
|
|
118
120
|
* Specifies which language we want to show navigation in (sv,da,fi,no,en)
|
|
@@ -517,6 +519,11 @@ export namespace Components {
|
|
|
517
519
|
"heading": string;
|
|
518
520
|
"preamble": string;
|
|
519
521
|
}
|
|
522
|
+
interface PnQuoteCard {
|
|
523
|
+
"name": string;
|
|
524
|
+
"occupation": string;
|
|
525
|
+
"quote": string;
|
|
526
|
+
}
|
|
520
527
|
interface PnSidenav {
|
|
521
528
|
/**
|
|
522
529
|
* Specifies which language we want to show navigation in (sv,da,fi,no,en)
|
|
@@ -596,7 +603,7 @@ export namespace Components {
|
|
|
596
603
|
"heading": string;
|
|
597
604
|
}
|
|
598
605
|
interface PnStatsInfoData {
|
|
599
|
-
"compId":
|
|
606
|
+
"compId": string;
|
|
600
607
|
"data": number;
|
|
601
608
|
"duration"?: number;
|
|
602
609
|
"preamble": string;
|
|
@@ -699,6 +706,12 @@ declare global {
|
|
|
699
706
|
prototype: HTMLPnLanguageSelectorOptionElement;
|
|
700
707
|
new (): HTMLPnLanguageSelectorOptionElement;
|
|
701
708
|
};
|
|
709
|
+
interface HTMLPnLineShapeElement extends Components.PnLineShape, HTMLStencilElement {
|
|
710
|
+
}
|
|
711
|
+
var HTMLPnLineShapeElement: {
|
|
712
|
+
prototype: HTMLPnLineShapeElement;
|
|
713
|
+
new (): HTMLPnLineShapeElement;
|
|
714
|
+
};
|
|
702
715
|
interface HTMLPnMainnavElement extends Components.PnMainnav, HTMLStencilElement {
|
|
703
716
|
}
|
|
704
717
|
var HTMLPnMainnavElement: {
|
|
@@ -909,6 +922,12 @@ declare global {
|
|
|
909
922
|
prototype: HTMLPnQuickCtaElement;
|
|
910
923
|
new (): HTMLPnQuickCtaElement;
|
|
911
924
|
};
|
|
925
|
+
interface HTMLPnQuoteCardElement extends Components.PnQuoteCard, HTMLStencilElement {
|
|
926
|
+
}
|
|
927
|
+
var HTMLPnQuoteCardElement: {
|
|
928
|
+
prototype: HTMLPnQuoteCardElement;
|
|
929
|
+
new (): HTMLPnQuoteCardElement;
|
|
930
|
+
};
|
|
912
931
|
interface HTMLPnSidenavElement extends Components.PnSidenav, HTMLStencilElement {
|
|
913
932
|
}
|
|
914
933
|
var HTMLPnSidenavElement: {
|
|
@@ -1001,6 +1020,7 @@ declare global {
|
|
|
1001
1020
|
"pn-find-service-and-price-result": HTMLPnFindServiceAndPriceResultElement;
|
|
1002
1021
|
"pn-language-selector": HTMLPnLanguageSelectorElement;
|
|
1003
1022
|
"pn-language-selector-option": HTMLPnLanguageSelectorOptionElement;
|
|
1023
|
+
"pn-line-shape": HTMLPnLineShapeElement;
|
|
1004
1024
|
"pn-mainnav": HTMLPnMainnavElement;
|
|
1005
1025
|
"pn-mainnav-level": HTMLPnMainnavLevelElement;
|
|
1006
1026
|
"pn-mainnav-link": HTMLPnMainnavLinkElement;
|
|
@@ -1036,6 +1056,7 @@ declare global {
|
|
|
1036
1056
|
"pn-proxio-productcard-information": HTMLPnProxioProductcardInformationElement;
|
|
1037
1057
|
"pn-proxio-productcard-pricelink": HTMLPnProxioProductcardPricelinkElement;
|
|
1038
1058
|
"pn-quick-cta": HTMLPnQuickCtaElement;
|
|
1059
|
+
"pn-quote-card": HTMLPnQuoteCardElement;
|
|
1039
1060
|
"pn-sidenav": HTMLPnSidenavElement;
|
|
1040
1061
|
"pn-sidenav-level": HTMLPnSidenavLevelElement;
|
|
1041
1062
|
"pn-sidenav-link": HTMLPnSidenavLinkElement;
|
|
@@ -1156,6 +1177,8 @@ declare namespace LocalJSX {
|
|
|
1156
1177
|
"selected"?: boolean;
|
|
1157
1178
|
"url"?: string;
|
|
1158
1179
|
}
|
|
1180
|
+
interface PnLineShape {
|
|
1181
|
+
}
|
|
1159
1182
|
interface PnMainnav {
|
|
1160
1183
|
/**
|
|
1161
1184
|
* Specifies which language we want to show navigation in (sv,da,fi,no,en)
|
|
@@ -1577,6 +1600,11 @@ declare namespace LocalJSX {
|
|
|
1577
1600
|
"heading"?: string;
|
|
1578
1601
|
"preamble"?: string;
|
|
1579
1602
|
}
|
|
1603
|
+
interface PnQuoteCard {
|
|
1604
|
+
"name"?: string;
|
|
1605
|
+
"occupation"?: string;
|
|
1606
|
+
"quote"?: string;
|
|
1607
|
+
}
|
|
1580
1608
|
interface PnSidenav {
|
|
1581
1609
|
/**
|
|
1582
1610
|
* Specifies which language we want to show navigation in (sv,da,fi,no,en)
|
|
@@ -1656,7 +1684,7 @@ declare namespace LocalJSX {
|
|
|
1656
1684
|
"heading"?: string;
|
|
1657
1685
|
}
|
|
1658
1686
|
interface PnStatsInfoData {
|
|
1659
|
-
"compId"?:
|
|
1687
|
+
"compId"?: string;
|
|
1660
1688
|
"data"?: number;
|
|
1661
1689
|
"duration"?: number;
|
|
1662
1690
|
"preamble"?: string;
|
|
@@ -1693,6 +1721,7 @@ declare namespace LocalJSX {
|
|
|
1693
1721
|
"pn-find-service-and-price-result": PnFindServiceAndPriceResult;
|
|
1694
1722
|
"pn-language-selector": PnLanguageSelector;
|
|
1695
1723
|
"pn-language-selector-option": PnLanguageSelectorOption;
|
|
1724
|
+
"pn-line-shape": PnLineShape;
|
|
1696
1725
|
"pn-mainnav": PnMainnav;
|
|
1697
1726
|
"pn-mainnav-level": PnMainnavLevel;
|
|
1698
1727
|
"pn-mainnav-link": PnMainnavLink;
|
|
@@ -1728,6 +1757,7 @@ declare namespace LocalJSX {
|
|
|
1728
1757
|
"pn-proxio-productcard-information": PnProxioProductcardInformation;
|
|
1729
1758
|
"pn-proxio-productcard-pricelink": PnProxioProductcardPricelink;
|
|
1730
1759
|
"pn-quick-cta": PnQuickCta;
|
|
1760
|
+
"pn-quote-card": PnQuoteCard;
|
|
1731
1761
|
"pn-sidenav": PnSidenav;
|
|
1732
1762
|
"pn-sidenav-level": PnSidenavLevel;
|
|
1733
1763
|
"pn-sidenav-link": PnSidenavLink;
|
|
@@ -1760,6 +1790,7 @@ declare module "@stencil/core" {
|
|
|
1760
1790
|
"pn-find-service-and-price-result": LocalJSX.PnFindServiceAndPriceResult & JSXBase.HTMLAttributes<HTMLPnFindServiceAndPriceResultElement>;
|
|
1761
1791
|
"pn-language-selector": LocalJSX.PnLanguageSelector & JSXBase.HTMLAttributes<HTMLPnLanguageSelectorElement>;
|
|
1762
1792
|
"pn-language-selector-option": LocalJSX.PnLanguageSelectorOption & JSXBase.HTMLAttributes<HTMLPnLanguageSelectorOptionElement>;
|
|
1793
|
+
"pn-line-shape": LocalJSX.PnLineShape & JSXBase.HTMLAttributes<HTMLPnLineShapeElement>;
|
|
1763
1794
|
"pn-mainnav": LocalJSX.PnMainnav & JSXBase.HTMLAttributes<HTMLPnMainnavElement>;
|
|
1764
1795
|
"pn-mainnav-level": LocalJSX.PnMainnavLevel & JSXBase.HTMLAttributes<HTMLPnMainnavLevelElement>;
|
|
1765
1796
|
"pn-mainnav-link": LocalJSX.PnMainnavLink & JSXBase.HTMLAttributes<HTMLPnMainnavLinkElement>;
|
|
@@ -1795,6 +1826,7 @@ declare module "@stencil/core" {
|
|
|
1795
1826
|
"pn-proxio-productcard-information": LocalJSX.PnProxioProductcardInformation & JSXBase.HTMLAttributes<HTMLPnProxioProductcardInformationElement>;
|
|
1796
1827
|
"pn-proxio-productcard-pricelink": LocalJSX.PnProxioProductcardPricelink & JSXBase.HTMLAttributes<HTMLPnProxioProductcardPricelinkElement>;
|
|
1797
1828
|
"pn-quick-cta": LocalJSX.PnQuickCta & JSXBase.HTMLAttributes<HTMLPnQuickCtaElement>;
|
|
1829
|
+
"pn-quote-card": LocalJSX.PnQuoteCard & JSXBase.HTMLAttributes<HTMLPnQuoteCardElement>;
|
|
1798
1830
|
"pn-sidenav": LocalJSX.PnSidenav & JSXBase.HTMLAttributes<HTMLPnSidenavElement>;
|
|
1799
1831
|
"pn-sidenav-level": LocalJSX.PnSidenavLevel & JSXBase.HTMLAttributes<HTMLPnSidenavLevelElement>;
|
|
1800
1832
|
"pn-sidenav-link": LocalJSX.PnSidenavLink & JSXBase.HTMLAttributes<HTMLPnSidenavLinkElement>;
|
package/umd/pn-marketweb-init.js
CHANGED
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
|
|
33
33
|
const s = document.createElement('script');
|
|
34
34
|
const currentScriptTag = document.querySelector('script[src*="pn-marketweb-init.js"]');
|
|
35
|
-
const currentScriptSrc = currentScriptTag.getAttribute('src').replace('@latest','@2.0.
|
|
35
|
+
const currentScriptSrc = currentScriptTag.getAttribute('src').replace('@latest','@2.0.111');
|
|
36
36
|
checkParameters(currentScriptSrc);
|
|
37
37
|
const loaderScriptSrc = currentScriptSrc.replace('pn-marketweb-init.js', 'standalone-loader.js');
|
|
38
38
|
s.setAttribute("type", "module");
|
|
@@ -24,12 +24,12 @@
|
|
|
24
24
|
|
|
25
25
|
const s = document.createElement('script');
|
|
26
26
|
s.setAttribute('type', 'module');
|
|
27
|
-
s.setAttribute('src', 'https://cdn.jsdelivr.net/npm/@postnord/pn-marketweb-components@2.0.
|
|
27
|
+
s.setAttribute('src', 'https://cdn.jsdelivr.net/npm/@postnord/pn-marketweb-components@2.0.111/umd/standalone-loader-salesforce.js');
|
|
28
28
|
document.querySelector('head').appendChild(s);
|
|
29
29
|
|
|
30
30
|
const style = document.createElement('link');
|
|
31
31
|
style.setAttribute('rel', 'stylesheet');
|
|
32
|
-
style.setAttribute('href', 'https://cdn.jsdelivr.net/npm/@postnord/pn-marketweb-components@2.0.
|
|
32
|
+
style.setAttribute('href', 'https://cdn.jsdelivr.net/npm/@postnord/pn-marketweb-components@2.0.111/umd/pn-marketweb-wrongrembase.css');
|
|
33
33
|
document.querySelector('head').appendChild(style);
|
|
34
34
|
|
|
35
35
|
window['bindLanguageSelector'] = function () {
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
System.register(["./p-36654f2a.system.js"],(function(t){"use strict";var n,a,e;return{setters:[function(t){n=t.r;a=t.h;e=t.a}],execute:function(){var i=function(t,n,a,e){if(n===void 0){n=0}if(a===void 0){a=100}if(e===void 0){e=1e3}var i=null;var o=function(s){if(!i)i=s;var r=Math.min((s-i)/e,1);t.innerHTML=(Math.round((r*(a-n)+n)*10)/10).toString();if(r<1){window.requestAnimationFrame(o)}};window.requestAnimationFrame(o)};var o=function(t,n,a){t.forEach((function(t){t.target.classList.toggle(n,t.isIntersecting);a(t)}))};var s="pn-stats-info-data{width:50%;}pn-stats-info-data .pn-stats-info-data__container{width:100%;background-color:transparent;color:#F06365;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-align:center;align-items:center;padding:2rem}pn-stats-info-data .pn-stats-info-data__container__content{display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-pack:center;justify-content:center}pn-stats-info-data .pn-stats-info-data__container__content__data{font-weight:700;font-size:3rem;line-height:110%}@media screen and (min-width: 1200px){pn-stats-info-data .pn-stats-info-data__container__content__data{font-size:6.8rem}}pn-stats-info-data .pn-stats-info-data__container__content__unit{font-weight:700;font-size:3rem;line-height:110%}@media screen and (min-width: 1200px){pn-stats-info-data .pn-stats-info-data__container__content__unit{font-size:6.8rem}}pn-stats-info-data .pn-stats-info-data__container__content__preamble{text-align:center;font-weight:400;font-size:1.4rem;line-height:110%;color:#FFFFFF}";var r=t("pn_stats_info_data",function(){function t(t){var a=this;n(this,t);this.data=0;this.unit=null;this.preamble=null;this.compId=null;this.duration=1e3;this.hasBeenShown=false;this.inViewPortCallback=function(t){if(t.isIntersecting){a.hasBeenShown=true}}}t.prototype.watchStateHandlder=function(t,n){var a=document.getElementById("pn-stats-info-data-".concat(this.compId));if(a.classList.contains("is-inViewport")&&t!==n){i(a,0,this.data,this.duration)}};t.prototype.render=function(){return a(e,null,a("div",{class:"pn-stats-info-data__container"},a("div",{class:"pn-stats-info-data__container__content"},a("div",{class:"pn-stats-info-data__container__content__data",id:"pn-stats-info-data-".concat(this.compId)}),a("div",{class:"pn-stats-info-data__container__content__unit"},this.unit)),a("div",{class:"pn-stats-info-data__container__content__preamble"},this.preamble)))};t.prototype.componentDidRender=function(){var t=this;var n=new IntersectionObserver((function(n){return o(n,"is-inViewport",t.inViewPortCallback)}));var a=document.getElementById("pn-stats-info-data-".concat(this.compId));n.observe(a)};Object.defineProperty(t,"watchers",{get:function(){return{hasBeenShown:["watchStateHandlder"]}},enumerable:false,configurable:true});return t}());r.style=s}}}));
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{r as t,h as n,a}from"./p-58e8d7d5.js";let i=class{constructor(n){t(this,n),this.data=0,this.unit=null,this.preamble=null,this.compId=null,this.duration=1e3,this.hasBeenShown=!1,this.inViewPortCallback=t=>{t.isIntersecting&&(this.hasBeenShown=!0)}}watchStateHandlder(t,n){const a=document.getElementById(`pn-stats-info-data-${this.compId}`);a.classList.contains("is-inViewport")&&t!==n&&((t,n=0,a=100,i=1e3)=>{let s=null;const e=o=>{s||(s=o);const d=Math.min((o-s)/i,1);t.innerHTML=(Math.round(10*(d*(a-n)+n))/10).toString(),d<1&&window.requestAnimationFrame(e)};window.requestAnimationFrame(e)})(a,0,this.data,this.duration)}render(){return n(a,null,n("div",{class:"pn-stats-info-data__container"},n("div",{class:"pn-stats-info-data__container__content"},n("div",{class:"pn-stats-info-data__container__content__data",id:`pn-stats-info-data-${this.compId}`}),n("div",{class:"pn-stats-info-data__container__content__unit"},this.unit)),n("div",{class:"pn-stats-info-data__container__content__preamble"},this.preamble)))}componentDidRender(){const t=new IntersectionObserver((t=>((t,n,a)=>{t.forEach((t=>{t.target.classList.toggle("is-inViewport",t.isIntersecting),a(t)}))})(t,0,this.inViewPortCallback))),n=document.getElementById(`pn-stats-info-data-${this.compId}`);t.observe(n)}static get watchers(){return{hasBeenShown:["watchStateHandlder"]}}};i.style="pn-stats-info-data{width:50%;}pn-stats-info-data .pn-stats-info-data__container{width:100%;background-color:transparent;color:#F06365;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-align:center;align-items:center;padding:2rem}pn-stats-info-data .pn-stats-info-data__container__content{display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-pack:center;justify-content:center}pn-stats-info-data .pn-stats-info-data__container__content__data{font-weight:700;font-size:3rem;line-height:110%}@media screen and (min-width: 1200px){pn-stats-info-data .pn-stats-info-data__container__content__data{font-size:6.8rem}}pn-stats-info-data .pn-stats-info-data__container__content__unit{font-weight:700;font-size:3rem;line-height:110%}@media screen and (min-width: 1200px){pn-stats-info-data .pn-stats-info-data__container__content__unit{font-size:6.8rem}}pn-stats-info-data .pn-stats-info-data__container__content__preamble{text-align:center;font-weight:400;font-size:1.4rem;line-height:110%;color:#FFFFFF}";export{i as pn_stats_info_data}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{r as n,h as t,a as i}from"./p-58e8d7d5.js";let a=class{constructor(t){n(this,t),this.heading="Heading",this.dataArray='[{ "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 }]',this.backgroundUrl=null,this.myParsedArray=JSON.parse(this.dataArray)}parseMyArrayProp(n){n&&(this.myParsedArray=JSON.parse(n))}render(){return t(i,null,t("div",{class:"pn-stats-info__container"},t("div",{class:"pn-stats-info__container__map",style:{backgroundImage:`url(${this.backgroundUrl})`}}),t("div",{class:"pn-stats-info__container__content",style:{backgroundImage:`url(${this.backgroundUrl})`}},t("h3",{class:"pn-stats-info__container__content__heading"},this.heading),t("div",{class:"pn-stats-info__container__content__data"},this.myParsedArray&&this.myParsedArray.map(((n,i)=>t("pn-stats-info-data",{"comp-id":i,data:n.data,unit:n.unit,preamble:n.preamble,duration:n.duration})))))))}static get watchers(){return{dataArray:["parseMyArrayProp"]}}};a.style=".bleed-container:has(pn-stats-info){padding:0;margin-bottom:3rem;overflow:hidden}.bleed-container:has(pn-stats-info) .container>.mb-5{margin-bottom:0 !important}.bleed-container:has(pn-stats-info) .statsblock{margin-bottom:0 !important}pn-stats-info{width:100%}pn-stats-info .pn-stats-info__container{display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-pack:center;justify-content:center;padding-top:2rem}@media screen and (min-width: 768px){pn-stats-info .pn-stats-info__container{padding-top:6rem}}@media screen and (min-width: 1200px){pn-stats-info .pn-stats-info__container{padding-top:8rem}}pn-stats-info .pn-stats-info__container__map{display:none}@media screen and (min-width: 768px){pn-stats-info .pn-stats-info__container__map{display:block;max-width:46rem;width:100%;background-color:#0D234B;background-repeat:no-repeat;background-position:bottom center;background-size:55%}}@media screen and (min-width: 1200px){pn-stats-info .pn-stats-info__container__map{background-size:contain}}pn-stats-info .pn-stats-info__container__content{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-align:center;align-items:center;padding:1rem;width:100%;background-color:#0D234B;background-repeat:no-repeat;background-position:bottom left;background-size:50%;background-blend-mode:overlay;padding-bottom:2rem}@media screen and (min-width: 768px){pn-stats-info .pn-stats-info__container__content{max-width:540px;background-position:-999px -999px;background-size:0;padding-bottom:4rem;padding-right:4rem}}@media screen and (min-width: 1200px){pn-stats-info .pn-stats-info__container__content{max-width:100%;padding-bottom:6rem;padding-right:6rem}}pn-stats-info .pn-stats-info__container__content__heading{color:#F06365;margin-bottom:2.4rem;-ms-flex-item-align:center;align-self:center;text-align:center;font-size:3rem;line-height:110%}@media screen and (min-width: 1200px){pn-stats-info .pn-stats-info__container__content__heading{font-weight:700;font-size:4.8rem}}pn-stats-info .pn-stats-info__container__content__data{height:100%;display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:wrap;flex-wrap:wrap;min-height:20rem}@media screen and (min-width: 1640px){pn-stats-info .pn-stats-info__container__content__data{width:65rem}}";export{a as pn_stats_info}
|